home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks96 / FlyPaper.sit / Fly Paper / FlyPaper Source / App Sources / Clippings.h < prev    next >
Text File  |  1996-06-22  |  658b  |  25 lines

  1. #ifndef CLIPPINGS_H
  2. #define CLIPPINGS_H
  3.  
  4. #ifndef CLIPPINGFILE_H
  5. #include "ClippingFile.h"
  6. #endif
  7.  
  8. #ifndef __DRAG__
  9. #include <drag.h>
  10. #endif
  11.  
  12. Boolean InitClippings (void);
  13.  
  14. void AcceptNewClipping (DragReference dragRef, Point dropLocation);
  15. OSErr AddFlavorToClippingFile (short clippingRefNum, FlavorType flavorType, Handle flavorData);
  16. OSErr CreateEmptyClippingFile (short *fRefNum, OSType fileType, ClippingID& clippingID);
  17. void ProcessPendingClippings (void);
  18. void CheckForNewClippings (void);
  19. void RepositionClipping (DragReference drag, WindowPtr w);
  20.  
  21. #define    kLeftWindowProc            3200        //    No drag bar
  22. #define    kRightWindowProc        3201        //    No drag bar
  23.  
  24. #endif
  25.